home *** CD-ROM | disk | FTP | other *** search
- package symantec.itools.db.pro;
-
- import java.io.InputStream;
- import symjava.lang.Bignum;
- import symjava.sql.Date;
- import symjava.sql.SQLException;
- import symjava.sql.Time;
- import symjava.sql.Timestamp;
-
- public class Projection implements ProjLink {
- ProjBinder _bind = null;
-
- public void init(ProjBinder data) {
- this._bind = data;
- }
-
- public void notifyDataChange(ProjBinder data) {
- this._bind = data;
- }
-
- public boolean notifySetData(ProjBinder data) throws SQLException {
- return true;
- }
-
- public boolean isNull() throws SQLException {
- return this._bind.isNull();
- }
-
- public String getString() throws SQLException {
- return this._bind.getString();
- }
-
- public boolean getBoolean() throws SQLException {
- return this._bind.getBoolean();
- }
-
- public byte getByte() throws SQLException {
- return this._bind.getByte();
- }
-
- public short getShort() throws SQLException {
- return this._bind.getShort();
- }
-
- public int getInt() throws SQLException {
- return this._bind.getInt();
- }
-
- public long getLong() throws SQLException {
- return this._bind.getLong();
- }
-
- public float getFloat() throws SQLException {
- return this._bind.getFloat();
- }
-
- public double getDouble() throws SQLException {
- return this._bind.getDouble();
- }
-
- public Bignum getBignum(int scale) throws SQLException {
- return this._bind.getBignum(scale);
- }
-
- public byte[] getBytes() throws SQLException {
- return this._bind.getBytes();
- }
-
- public Date getDate() throws SQLException {
- return this._bind.getDate();
- }
-
- public Time getTime() throws SQLException {
- return this._bind.getTime();
- }
-
- public Timestamp getTimestamp() throws SQLException {
- return this._bind.getTimestamp();
- }
-
- public InputStream getAsciiStream() throws SQLException {
- return this._bind.getAsciiStream();
- }
-
- public InputStream getUnicodeStream() throws SQLException {
- return this._bind.getUnicodeStream();
- }
-
- public InputStream getBinaryStream() throws SQLException {
- return this._bind.getBinaryStream();
- }
-
- public void setNull(int sqlType) throws SQLException {
- this._bind.setNull(sqlType);
- }
-
- public void setBoolean(boolean x) throws SQLException {
- this._bind.setBoolean(x);
- }
-
- public void setByte(byte x) throws SQLException {
- this._bind.setByte(x);
- }
-
- public void setShort(short x) throws SQLException {
- this._bind.setShort(x);
- }
-
- public void setInt(int x) throws SQLException {
- this._bind.setInt(x);
- }
-
- public void setLong(long x) throws SQLException {
- this._bind.setLong(x);
- }
-
- public void setFloat(float x) throws SQLException {
- this._bind.setFloat(x);
- }
-
- public void setDouble(double x) throws SQLException {
- this._bind.setDouble(x);
- }
-
- public void setBignum(Bignum x) throws SQLException {
- this._bind.setBignum(x);
- }
-
- public void setString(String x) throws SQLException {
- this._bind.setString(x);
- }
-
- public void setBytes(byte[] x) throws SQLException {
- this._bind.setBytes(x);
- }
-
- public void setDate(Date x) throws SQLException {
- this._bind.setDate(x);
- }
-
- public void setTime(Time x) throws SQLException {
- this._bind.setTime(x);
- }
-
- public void setTimestamp(Timestamp x) throws SQLException {
- this._bind.setTimestamp(x);
- }
-
- public void setAsciiStream(InputStream x, int length) throws SQLException {
- this._bind.setAsciiStream(x, length);
- }
-
- public void setUnicodeStream(InputStream x, int length) throws SQLException {
- this._bind.setUnicodeStream(x, length);
- }
-
- public void setBinaryStream(InputStream x, int length) throws SQLException {
- this._bind.setBinaryStream(x, length);
- }
- }
-